home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 538 b | 30 lines |
-
- package borland.samples.jbcl.treecontrol;
-
- /**
- * A simple sample application that shows how to use the checkbox control.
- *
- * @version 1.0, 06/10/97
- * @author Borland Development Team
- */
-
- public class Application1 {
-
- /**
- * Construct the application
- */
- public Application1() {
- Frame1 frame = new Frame1();
- frame.pack();
- frame.setSize(600, 300);
- frame.setVisible(true);
- }
-
- /**
- * Main method
- */
- static public void main(String[] args) {
- new Application1();
- }
- }
-
-